home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr12 / v93n04z.zip / V93N046.IBM next >
Text File  |  1993-05-12  |  28KB  |  791 lines

  1. 1-Apr-93 16:54:50-MST,27510;000000000000
  2. Mail-From: GHICKS created at 29-Mar-93 07:04:20
  3. Return-Path: <INFO-IBMPC-REQUEST@wsmr-simtel20.ARMY.MIL>
  4. Message-ID: <930329065459.V93N46@wsmr-simtel20.Army.Mil>
  5. Date: Mon, 29 Mar 93 06:54:58 GMT+1
  6. From: "Info-IBMPC Digest" <Info-IBMPC@wsmr-simtel20.Army.mil>
  7. Reply-To: Info-IBMPC@wsmr-simtel20.ARMY.mil
  8. Subject: Info-IBMPC Digest V93 #46
  9. To: "Info-IBMPC Distribution": ;
  10.  
  11. Info-IBMPC Digest           Mon, 29 Mar 93       Volume 93 : Issue  46 
  12.  
  13. Today's Editor:
  14.          Gregory Hicks - Rota Spain <GHICKS@wsmr-simtel20.Army.Mil>
  15.  
  16. Today's Topics:
  17.                           486 memory errors.
  18.                      Day of Week Function in DOS
  19.              device drivers for Trantor SCSI card needed!
  20.                 How do I write real-mode 32-bit code?
  21.                How to run NCSA Telnet with PhoneNET PC?
  22.              how to send a clear screen code to a vt 100
  23.                            IBM error codes
  24.                    IBM VALUEPOINT & DOSLAN Problem
  25.                              I need help
  26.                    Information required about PICK
  27.                 MASSTECK...big prices.. slack support!
  28.             Memory CPU and buses and a lot of troubles...
  29.                     memory trouble on 486 computer
  30.                     modems and answering machines
  31.                             RS422 to RS232
  32.                Statistics packages and round off errors
  33.                       Video Blaster Info needed
  34.               Wanted Software Reviewers for OR/MS Today
  35.               word and RTF format (line length) problem
  36.  
  37. Send Replies or notes for publication to: <INFO-IBMPC@brl.mil>
  38.  
  39. Send requests of an administrative nature (addition to, deletion from
  40. the distribution list, et al) to: <INFO-IBMPC-REQUEST@brl.mil>
  41.  
  42. Archives of past issues of the Info-IBMPC Digest are available by FTP
  43. ONLY from WSMR-SIMTEL20.ARMY.MIL in directory PD2:<ARCHIVES.IBMPC>.
  44.  
  45. ----------------------------------------------------------------------
  46.  
  47. Date: Wed, 10 Mar 93 08:58:34 EST
  48. From: WMR01%ALBNYDH2.BITNET@pucc.Princeton.EDU
  49. Subject: 486 memory errors.
  50.  
  51. 1.  I agree that all these memory problems y'all are having with your
  52. 486's probably are not chip or simm related.
  53.  
  54. 2. However some may be chip or simm related.
  55.  
  56. 3. I had an intermitant memory error on my 386 last year.  It seemed to
  57. me that only certain programs would trigger it (windows included).  I
  58. ended up running checkit (with no emm line in the config.sys).   If I
  59. ran it less than say 10 times I would get a clean bill of health for
  60. the sytstem.
  61.  
  62. 4. On a hunch set checkit up with a high number of tests and ran it
  63. overnight the next morning the bad chip was located and subsequently
  64. replaced.
  65.  
  66. 5. The moral of this story.  Checkit is good at finding errors, but you
  67. must give it time to really work out your system to be sure.
  68.  
  69. 6. Just thought I'd put in my two cents worth.
  70.  
  71. Bill Ryan                              |Be careful what you ask for
  72. Computer Programmer Analyst            |you may get it and have to use it.
  73. New York State Department of Health|            -Kipers rules of logistics
  74. Albany, New York.|
  75.  
  76. ------------------------------
  77.  
  78. Date: 2 Mar 93 04:23:48 GMT
  79. From: Doug Merrett <dcm@iris.mincom.oz.au>
  80. Subject: Day of Week Function in DOS
  81.  
  82. dedgar@mta.ca wrote:
  83. : Hello All
  84. : Is there a DOS interrupt which will accept a date (like 25/02/93) and
  85. : return the day of the week (ie THURSDAY). I have looked around through
  86. : various manuals and have not seen a DOS function for this.
  87.  
  88. : If there isn't a function for this how come int21h, function 2Ah (GET
  89. : SYSTEM TIME) returns the current day of the week as well as the system
  90. : date when called. Is there some sort of undocumented call for this?
  91.  
  92. : Can anyone suggest any other way of getting this information.
  93.  
  94. --
  95.  
  96. Dale,
  97.  
  98. Here is some "C" code to calculate the day of the week.  I got it off
  99. the Net and I have no idea who wrote it, but it works well.
  100.  
  101. Regards,
  102.  
  103. Doug.
  104. ---
  105.  
  106. Doug Merrett
  107. Internet: dcm@mincom.oz.au
  108.  
  109. ---------------------------- CUT HERE ------------------------
  110.  
  111. /*----------------------------------------------------------------------
  112.  *
  113.  *  Compute_Day
  114.  *  Compute Day of Week
  115.  *
  116.  *  Usage
  117.  *
  118.  *      int
  119.  *      Compute_Day(date, month, year)
  120.  *      int     date ;
  121.  *      int     month ;
  122.  *      int     year ;
  123.  *
  124.  *  Parameters
  125.  *
  126.  *      date            Date of Month (1 - 31)
  127.  *      month           Month of Year (1 - 12)
  128.  *      year            Year (e.g., 1989)
  129.  *
  130.  *  Description
  131.  *
  132.  *      Compute_Day() computes the day of the week for the given date
  133.  *      using the Zeller Congruence.  It returns a positive value from
  134.  *      0 to 6 for the day of the week
  135.  *
  136.  *  Notes
  137.  *
  138.  *      The Zeller Congruence maps Saturday as day 0.  Most applications
  139.  *      treat Sunday as day 0.  The parameter ZELLER_OFFSET is used to
  140.  *      convert the day of the week from Zeller to local.
  141.  *
  142.  *-
  143.  */
  144.  
  145. int
  146. Compute_Day(date, month, year)
  147. int     date ;
  148. int     month ;
  149. int     year ;
  150.  
  151. {
  152. int     day ;
  153. int     yr ;
  154. int     mn ;
  155. int     n1 ;
  156. int     n2 ;
  157.  
  158. /* Offset from Zeller to local */
  159. /* --------------------------- */
  160. #define ZELLER_OFFSET   -1
  161.  
  162. yr = year ;
  163. mn = month ;
  164.  
  165. /* January or February? */
  166. /* -------------------- */
  167. if (mn < 3)
  168.         {
  169.         /* Yes, make these part of last year */
  170.         /* --------------------------------- */
  171.         mn += 12 ;
  172.         yr -= 1 ;
  173.         }
  174.  
  175. n1 = (26 * (mn + 1)) / 10 ;
  176. n2 = (int) ((125 * (long) yr) / 100) ;
  177.  
  178. day = ((date + n1 + n2 - (yr / 100) + (yr / 400) + ZELLER_OFFSET) % 7) ;
  179. return day ;
  180. }
  181.  
  182. ---------- CUT HERE ------
  183.  
  184. ------------------------------
  185.  
  186. Date: Wed, 10 Mar 93 22:51:55 ITA
  187. From: maurizio lana <LANA@itocsivm.csi.it>
  188. Subject: device drivers for Trantor SCSI card needed!
  189.  
  190. I bought a Grassroot floptical disk drive for Mac here in Italy.  The
  191. drive came with Mac software.
  192.  
  193. I have a PC with Trantor SCSI Card, and want to connect the floptical
  194. drive to this Trantor Card, but I lack the appropriate device driver.
  195.  
  196. Any suggestion? or could anyone that has it give me a copy (I think it
  197. is not copyrighted as far as I already have their hardware).
  198.  
  199. Many thanks. Please cc: your answer directly to me.
  200. Maurizio
  201.  
  202. MAURIZIO LANA | E-MAIL: LANA@ITOCSIVM.CSI.IT | fax 39-11-899 0458
  203. CISI - Universita' di Torino - V. S. Ottavio 20 - 10124 Torino Italy
  204.  
  205. ------------------------------
  206.  
  207. Date: 2 Mar 93 23:27:33 GMT
  208. From: Phillip Julian Eby <julian@feenix.metronet.com>
  209. Subject: How do I write real-mode 32-bit code?
  210.  
  211.  phr@telebit.com (Paul Rubin)  writes:
  212. >I'm interested in writing some assembly language routines that use
  213. >32-bit operations on the 386/486 in order to run fast.  This is for a
  214. >conventional, real-mode DOS application written mostly in C.  I'm
  215. >using Borland C++, which comes with TASM, but could switch to MSC/MASM
  216. >if I needed to.  What I'm trying to figure out is whether there
  217. >is a convenient way to make the assembler emit the "operand size"
  218. >prefix byte for every instruction that uses 32-bit data.
  219. >TASM has directives to assemeble 386 and 486 code, but I think this
  220. >just tells it to recognize some instructions that don't exist
  221. >on the 286.  In any case, the TASM manual is quite unclear and
  222. >none of the aftermarket books I've looked at say anything about this.
  223. >It's probably not enough to just refer to 32-bit register names
  224. >like eax, ecx, and so forth because tasm couldn't know to emit
  225. >the prefix for an instruction like "inc foo" where foo is a memory
  226. >address.  Do I have to define macros for every 32-bit instruction
  227. >I want to use, or what?  
  228.  
  229. If "foo" is defined as a 32-bit data item (e.g. "foo dd ?" or "extrn
  230. foo:dword" or "foo = this dword" or "foo label dword" etc.) or an
  231. override is used (e.g.  "inc dword ptr [foo]", the assembler should
  232. output the prefix, provided that you have the .386 (or TASM equivalent)
  233. mode active.  Any operation involving registers should work fine
  234. without the size override if you specify a 32-bit register form.
  235.  
  236. ------------------------------
  237.  
  238. Date: Wed, 10 Mar 93 11:25:51 EDT
  239. From: "Ghassan N. Alkhoja" <ALKHOJA@gwuvm.gwu.edu>
  240. Subject: How to run NCSA Telnet with PhoneNET PC?
  241.  
  242. Hello,
  243.  
  244. I am trying to use NCSA Telnet (and CUTCP tn3270) with Farallon's
  245. PhoneNET PC, but I'm having no success.
  246.  
  247. Everything works fine with the PhoneNET software but tn3270 cannot seem
  248. to obtain the Ethernet hardware address of the 3c503 card in the
  249. machine. It just gives junk like 81:81:81:81:81:81 or c:c:c:c:c:c. From
  250. there on no connections can be made. If I use 3c503 packet drivers,
  251. tn3270 works but PhoneNET crashes.
  252.  
  253. Everything checks ok with the Net.cfg and Config.tel files. Drivers for
  254. PhoneNET and for the 3c503 card load without errors (ioaddress,
  255. interrupt, port, etc. are consistant).
  256.  
  257. The machine I'm trying this on is an IBM AT, with a 3COM II/16 TP card.
  258.  
  259. I'd appreciate any suggestions. Thanks.
  260.  
  261. Ghassan Alkhoja
  262.  
  263. ------------------------------
  264.  
  265. Date: Wed, 10 Mar 93 11:27:31 EST
  266. From: "J. Pilant" <pilant@nadc.nadc.navy.mil>
  267. Subject: how to send a clear screen code to a vt 100
  268.  
  269. Stan Brown <brown@ncoast.org> writes:
  270. >ajnuttal@teaching.cs.adelaide.edu.au (Tony Nuttall) writes:
  271. >>I'm in the middle of writing an application which has to periodically
  272. >>send information through com2 to a number of vt100 terminals.  What i
  273. >>need to know is the clear and home screen code for vt100 terminal.
  274. >
  275. >You're in luck\(59) the VT100 screens accept all the ANSI codes listed in
  276. >your DOS manual under ANSI.SYS (except for setting colors of
  277. >course--though reverse video and blinking do work).
  278. >
  279. >For clear screen it's (ESC)[2J where (ESC) stands for ASCII 27--don't
  280. >include the parens in the string.  This erases the entire screen and
  281. >moves the cursor to position 0,0 (upper left).  To move the cursor
  282. >without erasing, use (ESC)[line\(59)columnH e.g. "\![4\(59)20H" moves
  283. >to line 5 column 21.  Remember the numbering system is 0-based not
  284. >1-based.
  285.  
  286. Almost right.  The PC implimentation by IBM/MicroSoft goofed.  The PC
  287. has no clear-to-end/clear-to-start code, and its clear-start-to-end
  288. works wrong.  Sending "TEST$[10,1H$[J" leaves a blank screen and cursor
  289. in the top left on a PC, bye a blank lower half and cursor on line 10
  290. on a VT100.
  291.  
  292. The relevent sequences are:
  293. ESC [ y \(59) x H  -- Position cursor
  294. ESC [ p0 J     -- Clear screen [default=0] [0=here down, 1=here up, 2=all]
  295. ESC [ p0 K     -- Clear line [default=0] [0=here right, 1=here left, 2=all]
  296.  
  297. /jeff
  298.  
  299. ------------------------------
  300.  
  301. Date: Wed, 10 Mar 93 01:28:55 GMT
  302. From: mjhf@troi.cc.rochester.edu (M.J. Horsfall)
  303. Subject: IBM error codes (V93 #37)
  304.  
  305. >A friend of mine have a PS/80 with a boot problem, the machine reports
  306. >164 error code and we do not know what it means.  If someone could send
  307. >us the error codes and an explanation of this particular problem we
  308. >would thank you very much.
  309.  
  310. >Regard,
  311. >       Johnny
  312.  
  313. According to my rather incomplete list of POST error codes, 164
  314. signifies that the Memory size is incorrect. Has your friend recently
  315. added extended memory?
  316.  
  317. Hope this helps,
  318.  
  319. Mike
  320. --
  321. M.J. Horsfall --------------------------------- mjhf@troi.cc.rochester.edu
  322. Department of Biophysics                        --------------------------
  323. University of Rochester ----------------------- Phone:(716)-275-8703 (Lab)
  324.  
  325. ------------------------------
  326.  
  327. Date: Tue Mar 09 16:57:33 GMT 1993
  328. From: John Sheard <jas@elec-eng.leeds.ac.uk>
  329. Subject: IBM VALUEPOINT & DOSLAN Problem
  330.  
  331. We have just purchased a PSVP 450DX2 pc, type 6384, model F42.
  332.  
  333. This has a 8 bit IBM Token-Ring (type II) adapter fitted. The switches
  334. are set for ram address cc00, irq2, primary adapter, and 8kbytes
  335. address space.
  336.  
  337. Our problem is that when the /ems switch is added to the Doslan.ini
  338. file NET START gives the errors below:
  339.  
  340.     Unknown network error 57
  341.  
  342.     NET201: An initialisation error occurred. 0339
  343.  
  344. The Dos Lan requester users guide states that the 03 indicates failure
  345. of program MSGSRVR.EXE and that the '39' is a hexadecimal
  346. representation of a DOS error code.
  347.  
  348. My config.sys and autoexec.bat seem to install correctly and we have no
  349. problems with apparently identical setups on IBM PS2's.
  350.  
  351. CONFIG.SYS
  352.  
  353.     SHELL=C:\DOS\COMMAND.COM /E:5210 /P
  354.     device=C:\dos\himem.sys
  355.     device=c:\dos\emm386.exe 2048 frame=d000 x=cc00-cdff ram
  356.     DOS=HIGH,UMB
  357.     DEVICEHIGH=C:\DOS\SETVER.EXE
  358.     COUNTRY=044,437,C:\DOS\COUNTRY.SYS
  359.     DEVICE=C:\DOS\DISPLAY.SYS CON=(EGA,,1)
  360.     DEVICEHIGH=C:\DOS\CMOSCLK.SYS
  361.     device=c:\dos\ansi.sys
  362.     LASTDRIVE=Z
  363.     files = 50
  364.     FCBS=16,8
  365.     buffers = 30
  366.     device=C:\WINDOWS\smartdrv.sys 512 512
  367.     device=\DOSLAN\DXMA0MOD.SYS 001
  368.     device=\DOSLAN\DXMC0MOD.SYS
  369.     device=\DOSLAN\DXMT0MOD.SYS S=12 C=14 ST=12
  370.  
  371. AUTOEXEC.BAT
  372.  
  373.     set comspec=c:\dos\command.com
  374.  
  375.     PATH=C:\WINDOWS;C:\DOSLAN;C:\;C:\DOS;C:\BIN;d:\FT
  376.     append /e
  377.  
  378.     MODE CON CODEPAGE PREPARE=((437) C:\DOS\EGA.CPI)
  379.     MODE CON CODEPAGE SELECT=437
  380.     KEYB UK,,C:\DOS\KEYBOARD.SYS
  381.  
  382.     mirror c: /ta /tc /td
  383.     mirror d:
  384.     c:\dos\mouse /Y
  385.     numlock off
  386.     VER
  387.     fastopen c:=50
  388.     prompt $e[33m$p$g $e[32m
  389.     loadhigh doskey
  390.  
  391.     SET TEMP=C:\DOS
  392.     set TERM=ibmpc2
  393.     set USER=GBL
  394.     set ELIB=c:\BIN\elib
  395.     set TMP=c:\tmp
  396.  
  397.     call neweel
  398.  
  399. NEWEEL.BAT
  400.  
  401.         @ECHO off
  402.         if not /%1/ == //  goto SET_USER
  403.         if not /%USER%/ == //  goto NET_LOGON
  404.         set USER=*
  405.         if /%USER%/ == /*/  goto NET_LOGON
  406.         goto NO_USER
  407.  
  408.         :SET_USER
  409.         set USER=%1
  410.         goto NET_LOGON
  411.  
  412.         :NET_LOGON
  413.         ECHO.
  414.         ECHO  NETWORK:  Net start for logon to NEWEEL domain ...
  415.         net start
  416.         if not /%USER%/ == /*/  ECHO Logon username:%USER%
  417.         net logon %USER% * /DOM:NEWEEL
  418.         REM     if errorlevel 1 goto NO_DOSLAN
  419.  
  420.     [ etc ... ]
  421.  
  422. DOSLAN.INI
  423.  
  424.     RCV GBL2 NEWEEL
  425.     /SRV:8  /ASG:29 /NBC:4  /NBS:1K /BBC:1  /BBS:4K /PBC:4  /PBS:128
  426.     /PFS:32 /PFT:900        /PWT:250 /KUC:600       /KST:600
  427.     /WRK:111121101000000 /ems
  428.  
  429. -- 
  430. John Sheard
  431. Computer Engineering Group
  432. Dept. of Electronic Engineering
  433. Leeds University
  434. Email jas@ee.leeds.ac.uk
  435.  
  436. ------------------------------
  437.  
  438. Date: Wed, 10 Mar 93 15:11:11 -0300
  439. From: LCMI3ALF%BRUFSC.BITNET@pucc.Princeton.EDU
  440. Subject: I need help
  441.  
  442. Hi guys:
  443.       I'm currently faced an operating-system-like project in my
  444. University It will use protected-mode 386 and we'll explore real-time
  445. scheduling strate- gies on it. The basic idea is to build a kernel in
  446. top of DOS, which switch to protected mode on start, and runs a set of
  447. (synthetic) tasks.
  448.  
  449. I would like to know:
  450.     ** if anybody of you knows about a discussion list which covers
  451. advanced 386 topics (and real-time ones too)
  452.  
  453.     ** as development tools, we would use an advanced assembler as
  454. MASM6.0 or TASM, which positively generates protected-mode code. But
  455. the high level algorithms need to be coded in a (high level) language
  456. as C. But here comes the problem: none of the popular C compilers does
  457. it!. Alias, the same problem arises in the debugging hour.
  458.  
  459.    From reading commercial ads, 32-bit C Compilers like Watcom's and
  460. Metaware's do generate 32-bit applications, but this is far from saying
  461. protected mode ones, in accesing virtual memory, internal tables, etc.
  462.  
  463.        Could any of you give some advice to that point? I'll be very
  464. pleased to hear from you (portuguese and spanish answers also welcome)
  465. and you all are invited to join. Thank you for your time
  466.  
  467.       Alberto Ferrari
  468.       lcmi3alf@ibm.ufsc.br
  469.  
  470. ------------------------------
  471.  
  472. Date: Wed, 10 Mar 1993 07:26:14 -0200
  473. From: Hector Adolfo Alonso <HALONSO@cespivm2.unlp.edu.ar>
  474. Subject: Information required about PICK
  475.  
  476. Hello Info-IBMPC List:
  477.    I need information about the System Operating called PICK. I'm
  478. trying to locate an interest group that discuss them. If you have
  479. information on this topic, please let me know.
  480.  
  481. If you'll send info to me, I'll summarize for the list.
  482.  
  483.    Thanks in advance.
  484.                                                Hector Adolfo Alonso
  485.  
  486. ------------------------------
  487.  
  488. Date: Fri, 12 Mar 1993 05:26:43 GMT
  489. From: steveh@tasman.cc.utas.edu.au (Steve Howell)
  490. Subject: MASSTECK...big prices.. slack support!
  491.  
  492.     Not a very happy fella me... Ive just purchased a new
  493. autorouter to route our new PCB designs using Surface Mount Technology,
  494. and have been totally dissapointed... For $8,200 Australian Dollars,
  495. massteck will quite happily sell you their PCB router called MaxRoute,
  496. Here in Australia it is supported by a firm called Protel. I Purchased
  497. my copy from AWA Australia as a second hand package, as they had
  498. completed their projects and did not mind allowing us to use it.
  499.  
  500. But... There is a bug, and im told that because i havent forked out
  501. another $1000 bux ($750.00 US) for Maxroute Annual Maintenance, they
  502. wont even help me, or even let me report a bug in their software that
  503. needs to be fixed before this wizz bang wanko package will work with my
  504. application...
  505.  
  506. Anyway... What i am after, is, are there any users out there with
  507. maxroute that have problems with their Back Annotater from maxroute to
  508. Protel..  My copy screws up the clearences and crippels my board for
  509. manufacture..  Can anyone verify that this also happens with their
  510. copy?
  511.  
  512. If anyone from Massteck reads this post, it might be an idea to mail
  513. me, cause im not real happy with your product at the moment, and after
  514. reading all your letters claiming "We will continue to insure that
  515. mAsStEcK provides you with the best interactive autorouting tools, and
  516. the best customer support"... well im just not convinced.....
  517.  
  518. I look forward to any replies, even from anyone who even uses maxroute.
  519.  
  520. Thanks
  521.  
  522. Steven Howell
  523. Computing Centre
  524. University Of Tasmania
  525. Australia
  526.  
  527. ------------------------------
  528.  
  529. Date: Thu, 11 Mar 93 20:27:39 GMT
  530. From: Moshe Wainer <VAINER%IVORY.BITNET@pucc.Princeton.EDU>
  531. Subject: Memory CPU and buses and a lot of troubles...
  532.  
  533.  
  534. Hello netters!
  535. Last saturday i have turned on my 386DX-25 1989, and after a few
  536. minutes it drop down.  i have ctrl-alt-deleted it and then it began to
  537. do weird things: the memory test counting was as slow as ONE tick in 30
  538. SECONDS!!!!  the chip was quite much hotter than it is supposed to be..
  539.  
  540. when i worked on it i have played with parallel port connections and i
  541. thought that may be it has burned out the I/O card so i pulled out all
  542. the cards except for my ATI SVGA and tried to power it again, yet no
  543. result..
  544.  
  545. BTW after it finishes memory tests (waiting about 2 hours) it shows an
  546. HDD/FDD controller error, yet even w/o the controller it is supposed to
  547. do the memory tests much faster than within two hours!!!  Any ideas
  548. what it may be? (Memory chips? the CPU?? the BIOS?)
  549.  
  550.  
  551. -----------------
  552. and another question (yet if i have to buy a new CPU it is connected to the
  553. previous):
  554.  
  555. The question is about BUSEs and CPUs and i know the list had a lot of
  556. mailing on this subjects lately....
  557.  
  558. i thought of buying another motherboard and start wondering if it is
  559. worth investing in EISA/LOCAL bus 486..  as i understood from the
  560. discussions here, the EISA has a major problem of {the need to have
  561. all the cards to be32 bit ..  yet i have asked and was told that the
  562. LOCAL bus will be bottlenecked just the same if one of the cards is
  563. 8/16 bit.
  564.  
  565. the reason was as it was explained to me that if the process is waiting
  566. for something to be done on lets say 8 bit monitor adapter it would
  567. wait whnever the Disk controller or other card is 32 bit since most
  568. software / hardware can't support parallel processing and the
  569. motherboard (even with EISA or LOCAL bus don't have few busses to share
  570. bus transfers.) (oh isn't it confusing????)
  571.  
  572. and the other question is if i need to have all my cards to be
  573. purchased only to mmy specific bus, how do i know if there is enough
  574. cards available for those standards and is it THAT fast that worth
  575. considering ???
  576.  
  577. Thanx for reading this LOOONg question and my apreciating for incoming
  578. answers..
  579.  
  580. Vainer Moshe
  581. vainer@black.bgu.ac.il
  582. vainer@ivory.bgu.ac.il
  583.  
  584. ------------------------------
  585.  
  586. Date: Wed, 10 Mar 93 04:37:27 TUR
  587. From: "Thaddeus P. Bejnar" <LGLLAWLIB@TECHNET.NM.ORG>
  588. Subject: memory trouble on 486 computer
  589.  
  590. For those of you who missed it this discussion is about a "parity
  591. error" that appears when memory chips are good.  It appears in 486's
  592. when a lot of memory is being used see Archive for full scope.
  593.  
  594. I took the suggestion of Keith Burt <kburt%library@sdsu.edu> to exclude
  595. B000-B7FF in my QEMM device statement in config.sys.  What it did was
  596. disable the reading of my external CD/ROM drive (SCSI I adapter) while
  597. in Windows.  In DOS the drive read just fine.  It is true that I didn't
  598. get the "pariety error", but I didn't put the system through extensive
  599. testing after I discovered the disability.
  600.  
  601. Any other suggestions?  Or info on why excluding B000-B7FF might work?
  602. Or on a work-around for the SCSI in Windows if B000-B7FF is excluded?
  603.  
  604.                  --Thaddeus  Internet:  lgllawlib@technet.nm.org
  605.                              Bitnet:  lgllawl@USCN
  606.  
  607. ------------------------------
  608.  
  609. Date: Thu, 11 Mar 1993 11:02:29 +0100
  610. From: " (Josef Bigun)" <josef@ltssun8.epfl.ch>
  611. Subject: modems and answering machines
  612. Keywords: modem phone pc
  613.  
  614. Hello,
  615.  
  616. I am interested in a pc card/or standalone unit which is not too
  617. expensive and does most of the following things:
  618.  
  619. *modem functions
  620.   - connections to other computers and file transfers of course.
  621.   - sending and receiving fax
  622.   - differentiating between fax, commputer connection,
  623.      and normal voice call (I have only one phone line) in a clever way.
  624. *answering machine functions
  625.   - answer,record,remote reading
  626.  
  627. Say that I am not asking too much from the machines please.  Will be
  628. happy to receive pointers both in Europe and US.
  629.  
  630. Cheers
  631. Josef
  632.  
  633. ------------------------------
  634.  
  635. Date: Thu Mar 11 09:41:29 EST 1993
  636. From: cp486a!kvancamp@cpmail.att.com
  637. Subject: RS422 to RS232
  638.  
  639. Regarding RS-232 to RS-422 converters (and reverse), they are available
  640. from several electronics supply companies.  I believe I got one once
  641. from B&B Electronics for under $30.  Another company that comes to mind
  642. off the top of my head is Black Box.
  643.  
  644. Ken Van Camp    <cp486a!kvancamp@cpmail.att.com>
  645.  
  646. ------------------------------
  647.  
  648. Date: Wed, 10 Mar 93 11:02:00 EST
  649. From: sis1@niobbs1.em.cdc.gov
  650. Subject: Statistics packages and round off errors
  651.  
  652. Ang Peng Hwa writes about MINTAB v6.01:
  653.  
  654. >When I crunch the data with Clone A, I get
  655. >        R-sq = 0.989 and Durbin-Watson = 0.08.
  656.  
  657. >When I crunch the same data with Clone B, I get
  658. >        R-sq = 0.988 and Durbin-Watson = 0.06.
  659.  
  660. An obvious cause would be if system uses a math coprocessor and the
  661. other doesn't.  Another possibility is that Mintab is configured for
  662. double precision on one computer and single precision on another.  A
  663. third possibility is that the data is read from an ASCII file on one
  664. system and from a binary file on the other.  Lots of little things can
  665. explain this discrepancy.
  666.  
  667. The differences are just a curiousity, in my opinion.  No one would
  668. come up with a different interpretation of the statistical model based
  669. on a change in R-sq from .989 to .988.
  670.  
  671. The Durbin-Watson statistics are unusually extreme.  Is this a typo?
  672. Both appear to be highly significant, by the way, so a change in the
  673. first significant digit does not change the effective interpretation.
  674.  
  675. Steve Simon
  676. sis1@niobbs1.em.cdc.gov
  677.  
  678. ------------------------------
  679.  
  680. Date: Wed, 10 Mar 1993 09:47 EST
  681. From: Navin Ganeshan <NGANESHA%UDCVAX.BITNET@UBVM.cc.buffalo.edu>
  682. Subject: Video Blaster Info needed
  683.  
  684.    Hi, I was wondering if anyone had any information or first-hand
  685. knowledge of the VIDEO-BLASTER board from Creative Labs.
  686.  
  687.    I need to be able to get real-time video input from several sources,
  688. and be able to output it to a TV or VCR.  From what I've heard, the VB
  689. can do this.  But,
  690.  
  691.         -   Does it have a built-in cable tuner ?
  692.         -   Can it display 30 frames/sec digitized using MPEG or other
  693.             compression algorithm.
  694.         -   How does it handle sound (or does it) ?
  695.  
  696.    I'm hoping getting this single $ 399 card will serve all my video
  697. needs.  If anyone has any experience or comments on this board, I'd
  698. love to hear about it.
  699.  
  700. ======--------
  701.    Navin S. Ganeshan  
  702.    General Systems Corp
  703.    Vienna, VA
  704. =====---------
  705.  
  706. ------------------------------
  707.  
  708. Date: 11 Mar 1993 22:55:28 GMT
  709. From: kasicieh%triton.unm.edu@lynx.unm.edu (Sol Kassicieh ASM)
  710. Subject: Wanted Software Reviewers for OR/MS Today
  711.  
  712. The software review section of the OR/MS Today magazine published
  713. jointly by the Operations Research Society of America and the Institute
  714. of Management Sciences is looking for faculty and practitioners that
  715. are interested in reviewing software packages.
  716.  
  717. If you are interested, please send your
  718. 1) name     2) address     3) telephone number
  719. 4) e-mail address 
  720. 5) type of mchines available to them: PCs, Macs, Suns, DECs, Mainframes
  721.    (specify type).
  722. 6) areas of interest for software review: 
  723. i) SOFTWARE EDUCATIONAL MATERIALS for use in courses in following areas:
  724.     math programming, 
  725.     simulation
  726.     decision analysis
  727.     computer programs
  728.     other (specify)
  729.  
  730. ii) REGULAR PACKAGES USED IN RESEARCH or ON JOB in following areas:
  731.         math programming, 
  732.         simulation
  733.         decision analysis
  734.         computer programs 
  735.         other (specify)
  736.  
  737.  
  738. To the Software editor of OR/MS Today at the following address:
  739.  
  740. *  Sul Kassicieh             E-MAIL:    kasicieh@triton.unm.edu    *
  741. *  University of New Mexico                               *
  742. *  Anderson School of Management     FAX:    (505) 277-7108        *
  743. *  Albuquerque, NM  87131        PHONE:    (505) 277-8881        *
  744.  
  745. ------------------------------
  746.  
  747. Date: Thu, 11 Mar 1993 12:37:40 GMT
  748. From: wsmith@osiris.cso.uiuc.edu (Wayne R. Smith)
  749. Subject: word and RTF format (line length) problem
  750.  
  751. Info-IBMPC@wsmr-simtel20.ARMY.mil writes:
  752.  
  753. >i have a problem with word, and maybe somebody can help me.
  754. >we want to transfer word files via email.
  755.  
  756. why not just uuencode/uudecode it?
  757.  
  758. >RTF is a format which word can write containing only ASCII characters
  759. >and therefore transferrable via normal email BUT Winword writes ASCII
  760. >files with lines longer than 80 characters.  now some mailers
  761. >(especially on IBM mainframes) truncate mail files with line sthat
  762. >long.  is there a trick which can be taught to winword not to make the
  763. >lines too long?
  764.  
  765. one of the DOS text save options is "...w/line breaks"--that might help.
  766.  
  767. wayne
  768.  
  769. ------------------------------
  770.  
  771. Date: Wed, 10 Mar 93 16:26:11 EST
  772. From: Roger Denat <DENAT@tedm.dnet.ge.com>
  773.  
  774. An interesting tidbit published in the March 1, 1993 issue of
  775. Government Computer News tells the Email addresses for President
  776. Clinton.  It lists following commercial and Internet addresses if you
  777. want to send a letter or to subcribe to news lists.
  778.  
  779.  
  780. Clinton Email:
  781.    Compuserve:     75300,3115
  782.    America Online: ClintonPZ or Clinton PZ  (not sure if there is a space)
  783.  
  784. To find about and sign up for available news lists:
  785. clinton-info@campaign92.org
  786.  
  787. ------------------------------
  788.  
  789. End of Info-IBMPC Digest V93 #46
  790. ********************************
  791. -------